home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / DictionaryTable.wo / DictionaryTable.wod < prev    next >
Encoding:
Text File  |  1996-03-02  |  472 b   |  30 lines

  1. ////////////////////////
  2. //  DictionaryTable
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. DictionaryTable: WOGenericContainer {
  8.     elementName = "table";
  9.     border = borderSize;
  10.     cellPadding=cellPadding;
  11.     cellSpacing=cellSpacing;
  12. };
  13.  
  14. EntryRepetition: WORepetition {
  15.     list = allKeys;
  16.     item = currentKey;
  17. };
  18.  
  19. KeyCell: WOString {
  20.     value = currentKey;
  21. };
  22.  
  23. ValueCell: WOString {
  24.     value = currentValue;
  25. };
  26.  
  27. Comment: WOConditional {
  28.     condition = NO;
  29. };
  30.